home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 1 / Gekikoh Dennoh Club Vol. 1 (Japan).7z / Gekikoh Dennoh Club Vol. 1 (Japan) (Track 1).bin / kowin / archive / apl / gview120.lzh / gviewsrc.lzh / error.c < prev    next >
C/C++ Source or Header  |  1995-02-12  |  452b  |  30 lines

  1. /*
  2.     Copyright 1995 Ogasawara Hiroyuki(COR.)
  3. */
  4.  
  5. #include    <corlib.h>
  6. #include    <sys_doslib.h>
  7. #include    "gview.h"
  8.  
  9. void
  10. GV_Err( msg )
  11. char    *msg;
  12. {
  13.     ConsoleOpen();
  14.     ConsolePrint( "gview:" );
  15.     ConsolePrint( msg );
  16.     ConsolePrint( "\r\n" );
  17. }
  18.  
  19. void
  20. GV_Err2( msg, msg2 )
  21. char    *msg, *msg2;
  22. {
  23.     ConsoleOpen();
  24.     ConsolePrint( "gview:\'" );
  25.     ConsolePrint( msg );
  26.     ConsolePrint( "\'" );
  27.     ConsolePrint( msg2 );
  28.     ConsolePrint( "\r\n" );
  29. }
  30.